home *** CD-ROM | disk | FTP | other *** search
/ Elite American Models 4 / Elite American Models 4.iso / pc / mainmenu.dir / Internal_45.ls < prev    next >
Encoding:
Text File  |  1996-09-24  |  426 b   |  24 lines

  1. on exitFrame
  2.   if the type of sprite 20 > 0 then
  3.     if rollOver(20) then
  4.       go(the frame)
  5.       exit
  6.     end if
  7.   end if
  8.   repeat with x = 2 to 18
  9.     if the type of sprite x > 0 then
  10.       if rollOver(x) then
  11.         go(marker(0) + x - 1)
  12.         exit
  13.       end if
  14.     end if
  15.   end repeat
  16.   if the type of sprite 19 > 0 then
  17.     if rollOver(19) then
  18.       go(the frame)
  19.       exit
  20.     end if
  21.   end if
  22.   go(marker(0))
  23. end
  24.